home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-07-01 | 964 b | 42 lines |
- # ------------------------------------------------------------------------
- # Makefile for library files and directories of BLT library
- # ------------------------------------------------------------------------
-
- INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@
- BLT_LIBRARY = @BLT_LIBRARY@
- RM = rm -f
- SHELL = /bin/sh
- FILES = bltGraph.pro
- srcdir = @srcdir@
-
- all:
-
- install-top:
- @if test -d $(BLT_LIBRARY) ; then \
- : ; \
- else \
- mkdir $(BLT_LIBRARY) ; \
- fi
-
- install-dragdrop: install-top
- @if test -d $(BLT_LIBRARY)/dd_protocols ; then \
- : ; \
- else \
- mkdir $(BLT_LIBRARY)/dd_protocols ; \
- fi
- @set -x; for i in $(srcdir)/dd_protocols/*tcl* ; do \
- $(INSTALL_DATA) $$i $(BLT_LIBRARY)/dd_protocols ; \
- done
-
- install-files: install-top
- @set -x; for i in $(srcdir)/$(FILES) ; do \
- $(INSTALL_DATA) $$i $(BLT_LIBRARY) ; \
- done
-
- install: install-dragdrop install-files
-
- clean:
- $(RM) *\~ "#"*
-
-